/* ================= HERO SECTION ================= */
.lc-hero {
    background: linear-gradient(135deg, #0B2C6B 0%, #123A8C 50%, #1E5FD8 100%);
    padding: 140px 5% 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lc-hero::before,
.lc-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.lc-hero::before {
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(165, 201, 255, 0.15) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.lc-hero::after {
    bottom: -30%;
    left: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(111, 168, 255, 0.12) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(15px, -20px);
    }
}

.lc-hero h1 {
    color: #FFFFFF;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.lc-hero .subtitle {
    color: #A5C9FF;
    font-size: clamp(16px, 2.5vw, 20px);
    max-width: 800px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 30px;
    color: #FFFFFF;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.hero-badge::before {
    content: '💡';
    font-size: 20px;
}

/* ================= CONTENT SECTION ================= */
.lc-content {
    max-width: 1200px;
    margin: -40px auto 0px;
    padding: 0 5%;
    position: relative;
    z-index: 10;
}

/* Introduction Card */
.intro-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FF 100%);
    border-radius: 20px;
    padding: clamp(30px, 5vw, 50px);
    box-shadow: 0 12px 40px rgba(11, 44, 107, 0.15);
    margin-bottom: 40px;
    border: 2px solid rgba(165, 201, 255, 0.3);
}

.intro-card h2 {
    color: #0B2C6B;
    font-size: clamp(22px, 3vw, 28px);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* .intro-card h2::before {
content: '📋';
font-size: 1.2em;
} */

.intro-card p {
    color: #4B5563;
    font-size: clamp(15px, 1.8vw, 17px);
    line-height: 1.8;
}

/* Main Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.content-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: clamp(25px, 4vw, 40px);
    box-shadow: 0 8px 25px rgba(11, 44, 107, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #1E5FD8;
}

.content-card:hover {
    box-shadow: 0 12px 35px rgba(11, 44, 107, 0.15);
    transform: translateY(-5px);
}

.content-card h3 {
    color: #0B2C6B;
    font-size: clamp(18px, 2.5vw, 22px);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-card h3::before {
    content: '';
    width: 6px;
    height: 24px;
    background: linear-gradient(135deg, #A5C9FF, #1E5FD8);
    border-radius: 3px;
}

.content-card ul {
    list-style: none;
    padding: 0;
}

.content-card ul li {
    color: #4B5563;
    font-size: clamp(15px, 1.8vw, 16px);
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.content-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFFFFF;
    background: linear-gradient(135deg, #A5C9FF 0%, #6FA8FF 100%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    top: 3px;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(165, 201, 255, 0.15) 0%, rgba(111, 168, 255, 0.1) 100%);
    border-left: 5px solid #1E5FD8;
    padding: 25px 30px;
    border-radius: 12px;
    margin: 30px 0;
}

.highlight-box h4 {
    color: #0B2C6B;
    font-size: clamp(18px, 2.5vw, 20px);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-box h4::before {
    content: '🌐';
    font-size: 1.3em;
}

.highlight-box p {
    color: #2D3748;
    font-size: clamp(15px, 1.8vw, 17px);
    line-height: 1.8;
    margin-bottom: 12px;
}

/* Comparison Table */
.comparison-section {
    background: #FFFFFF;
    border-radius: 16px;
    padding: clamp(30px, 5vw, 50px);
    box-shadow: 0 8px 25px rgba(11, 44, 107, 0.08);
    margin-bottom: 40px;
}

.comparison-section h3 {
    color: #0B2C6B;
    font-size: clamp(20px, 3vw, 26px);
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 3px solid #1E5FD8;
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.comparison-col {
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.comparison-col.advance {
    background: linear-gradient(135deg, rgba(165, 201, 255, 0.15), rgba(111, 168, 255, 0.1));
    border: 2px solid #A5C9FF;
}

.comparison-col.lc {
    background: rgba(75, 85, 99, 0.05);
    border: 2px solid #E5E7EB;
}

.comparison-col h4 {
    font-size: clamp(17px, 2vw, 19px);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comparison-col.advance h4 {
    color: #0B2C6B;
}

.comparison-col.advance h4::before {
    content: '✅';
}

.comparison-col.lc h4 {
    color: #4B5563;
}

.comparison-col.lc h4::before {
    content: '⏳';
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0B2C6B 0%, #1E5FD8 100%);
    border-radius: 20px;
    padding: clamp(40px, 6vw, 60px);
    text-align: center;
    box-shadow: 0 12px 40px rgba(11, 44, 107, 0.25);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(165, 201, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section h3 {
    color: #FFFFFF;
    font-size: clamp(22px, 3.5vw, 32px);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    color: #A5C9FF;
    font-size: clamp(15px, 2vw, 18px);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-primary,
.cta-secondary {
    padding: 15px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(14px, 1.8vw, 16px);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-primary {
    background: linear-gradient(135deg, #A5C9FF, #6FA8FF);
    color: #0B2C6B;
    box-shadow: 0 8px 20px rgba(165, 201, 255, 0.4);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(165, 201, 255, 0.6);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Footer Note */
.footer-note {
    text-align: center;
    padding: 30px;
    color: #6B7280;
    font-size: clamp(14px, 1.5vw, 16px);
}

.footer-note strong {
    color: #0B2C6B;
    display: block;
    font-size: clamp(16px, 2vw, 18px);
    margin-bottom: 10px;
}

@media(max-width: 768px) {
    .comparison-table {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media(max-width: 480px) {
    .logo img {
        height: 40px;
    }

    .lc-hero {
        padding: 120px 5% 60px;
    }

    .lc-content {
        margin-top: -30px;
    }
}